home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 May / PCWorld_2000-05_cd.bin / Software / TemaCD / povray / povwin3.exe / %MAINDIR% / Insert Menu / Texture Maps / tiles texture.txt < prev   
Encoding:
Text File  |  2000-04-06  |  339 b   |  17 lines

  1. // texture component
  2. // create a tiled texture, alternates between 2 full textures
  3. tiles
  4. {
  5.   texture    // full texture of tile #1
  6.   {
  7.     pigment { agate scale 0.3 }
  8.     finish { ambient 0.2 }
  9.   }
  10.   tile2
  11.   texture    // full texture of tile #2
  12.   {
  13.     pigment { granite }
  14.     finish { specular 0.3 reflection 0.2 }
  15.   }
  16. }
  17.